home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / BDECONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-04  |  4.1 KB  |  81 lines

  1. unit BdeConst;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SDuplicateDatabaseName = 'Duplicate database name ''%s''';
  7.   SDuplicateSessionName = 'Duplicate session name ''%s''';
  8.   SInvalidSessionName = 'Invalid session name %s';
  9.   SDatabaseNameMissing = 'Database name missing';
  10.   SSessionNameMissing = 'Session name missing';
  11.   SDatabaseOpen = 'Cannot perform this operation on an open database';
  12.   SDatabaseClosed = 'Cannot perform this operation on a closed database';
  13.   SDatabaseHandleSet = 'Database handle owned by a different session';
  14.   SSessionActive = 'Cannot perform this operation on an active session';
  15.   SHandleError = 'Error creating cursor handle';
  16.   SInvalidFloatField = 'Cannot convert field ''%s'' to a floating point value';
  17.   SInvalidIntegerField = 'Cannot convert field ''%s'' to an integer value';
  18.   STableMismatch = 'Source and destination tables are incompatible';
  19.   SFieldAssignError = 'Fields ''%s'' and ''%s'' are not assignment compatible';
  20.   SFieldUndefinedType = 'Field ''%s'' is of unknown type';
  21.   SFieldUnsupportedType = 'Field ''%s'' is of an unsupported type';
  22.   SCompositeIndexError = 'Cannot use array of Field values with Expression Indices';
  23.   SInvalidBatchMove = 'Invalid batch move parameters';
  24.   SEmptySQLStatement = 'No SQL statement available';
  25.   SNoParameterValue = 'No value for parameter ''%s''';
  26.   SNoParameterType = 'No parameter type for parameter ''%s''';
  27.   SParameterNotFound = 'Parameter ''%s'' not found';
  28.   SParamTooBig = 'Parameter ''%s'', cannot save data larger than %d bytes';
  29.   SLoginError = 'Cannot connect to database ''%s''';
  30.   SInitError = 'An error occurred while attempting to initialize the Borland Database Engine (error $%.4x)';
  31.   SDatasetDesigner = 'Fields &Editor...';
  32.   SFKInternalCalc = '&InternalCalc';
  33.   SDatabaseEditor = 'Database &Editor...';
  34.   SExplore = 'E&xplore';
  35.   SLinkDesigner = 'Field ''%s'', from the Detail Fields list, must be linked';
  36.   SLinkDetail = '''%s'' cannot be opened';
  37.   SLinkMasterSource = 'The MasterSource property of ''%s'' must be linked to a DataSource';
  38.   SLinkMaster = 'Unable to open the MasterSource Table';
  39.   SSQLDatasetDesigner = 'F&ields Editor...';
  40.   SQBEVerb = '&Query Builder...';
  41.   SBindVerb = 'Define &Parameters...';
  42.   SIDAPILangID = '0009';
  43.   SDisconnectDatabase = 'Database is currently connected. Disconnect and continue?';
  44.   SBDEError = 'BDE error $%.4x';
  45.   SLookupSourceError = 'Unable to use duplicate DataSource and LookupSource';
  46.   SLookupTableError = 'LookupSource must be connected to TTable component';
  47.   SLookupIndexError = '%s must be the lookup table''s active index';
  48.   SParameterTypes = ';Input;Output;Input/Output;Result';
  49.   SInvalidParamFieldType = 'Must have a valid field type selected';
  50.   STruncationError = 'Parameter ''%s'' truncated on output';
  51.   SInvalidVersion = 'Unable to load bind parameters';
  52.   SDataTypes = ';String;SmallInt;Integer;Word;Boolean;Float;Currency;BCD;Date;Time;DateTime;;;;Blob;Memo;Graphic;;;;;Cursor;';
  53.   SResultName = 'Result';
  54.   SDBCaption = '%s.%s Database';
  55.   SParamEditor = '%s.%s Parameters';
  56.   SDatasetEditor = '%s.%s';
  57.   SIndexFilesEditor = '%s.%s Index Files';
  58.   SNoIndexFiles = '(None)';
  59.   SIndexDoesNotExist = 'Index does not exist. Index: %s';
  60.   SNoTableName = 'Missing TableName property';
  61.   SBatchExecute = 'E&xecute';
  62.   SNoCachedUpdates = 'Not in cached update mode';
  63.   SInvalidAliasName = 'Invalid alias name %s';
  64.   SDBGridColEditor = 'Co&lumns Editor...';
  65.   SNoFieldAccess = 'Cannot access field ''%s'' in a filter';
  66.   SUpdateSQLEditor = '&UpdateSQL Editor...';
  67.   SUntitled = 'Untitled Application';
  68.   SUpdateWrongDB = 'Cannot update, %s is not owned by %s';
  69.   SUpdateFailed = 'Update failed';
  70.   SSQLGenSelect = 'Must select at least one key field and one update field';
  71.   SSQLNotGenerated = 'Update SQL statements not generated, exit anyway?';
  72.   SSQLDataSetOpen = 'Unable to determine field names for %s';
  73.   SLocalTransDirty = 'The transaction isolation level must be dirty read for local databases';
  74.   SPrimary = 'Primary';
  75.   SMissingDataSet = 'Missing DataSet property';
  76.   SNoProvider = 'No provider available';
  77.  
  78. implementation
  79.  
  80. end.
  81.